body
{
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow: hidden
}

.menus
{
	height: 100%;
	width: 100%;
	padding: 20px;
	font-family: 'Sora';
}

.menu,.menus
{
	position: absolute
}

.menu
{
	width: 330px;
	font-family: 'Merriweather Sans';
	background: #e20909b6 url(Dinloggahär?width=449&height=449) no-repeat 115px center;
    background-size: 130px 120px;
	padding: 2.5px 13px 9px;
    border-radius: 12px;
	box-shadow: 0px 0px 16px #b42424;
    border: 2px solid rgb(1, 0, 3);
	overflow: hidden
}

.hidden
{
	display: none
}

.menu.align-left
{
	left: 40;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%)
}

.menu.align-top-left
{
	left: 40;
	top: 40
}

.menu.align-top
{
	left: 50%;
	top: 40;
	-webkit-transform: translate(-50%);
	transform: translate(-50%)
}

.menu.align-top-right
{
	right: 5%;
	top: 5%
}

.menu.align-right
{
	right: 5%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%)
}

.menu.align-bottom-right
{
	right: 5%;
	bottom: 5%
}

.menu.align-bottom
{
	left: 50%;
	bottom: 5%;
	-webkit-transform: translate(-50%);
	transform: translate(-50%)
}

.menu.align-bottom-left
{
	bottom: 5%
}

.menu.align-center
{
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%)
}

.menu .head
{
	font-weight: 700;
	position: relative;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	text-transform: uppercase
}

/* .menu .head-line
{
	position: absolute;
	top: 50%;
	display: block;
	content: "";
	width: 50%;
	height: 1px;
	background-color: #97171bd2;
	-webkit-animation: head-line .6s linear;
	animation: head-line .6s linear
} */

.head-line-last
{
	margin-left: 50%
}

@-webkit-keyframes head-line
{
	0%
	{
		background-color: #1d1d1d
	}

	to
	{
		background-color: #000000
	}
}

@keyframes head-line
{
	0%
	{
		background-color: #ffffffad
	}

	to
	{
		background-color: #000000
	}
}

.menu .head p
{
	position: relative;
	z-index: 2;
	display: inline-block;
	padding-left: 1em;
	padding-right: 1em;
	color: rgb(255, 255, 255);
	vertical-align: middle;
	letter-spacing: 5px;
	/* background-color: #27272734 */
}

.menu-status
{
	height: 100%;
	max-width: 10px;
	min-width: 10px;
	border-radius: 2px;
	/* background: rgba(20, 20, 20, 0.363); */
	float: left;
	margin: 0px;
	overflow: hidden
}

.menu-status-inner
{
	width: 100%;
	background: rgba(255, 255, 255, 0.432);
	position: relative;
	height: 0
}

.menu .menu-items
{
	max-height: 400px
}

.menu .menu-items .menu-item
{
	display: flex;
    align-items: center;
	/* background: rgba(20, 20, 20, 0.363); */
    color: #ffffff;
    /* border: 1px solid #97171bd2; */
	height: 40px;
	font-size: 15px;
	border-radius: 0px
}

.menu-label
{
	float: left;
	margin-left: 10px;
	white-space: nowrap
}

br
{
	content: "";
	margin: 0em;
	display: block;
	font-size: 24%
}

.menu .menu-items .menu-item.selected.up .menu-status .menu-status-inner
{
	height: 100%;
	-webkit-animation: new-up .01s linear;
	animation: new-up .01s linear;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards
}

.menu-item.old.up .menu-status .menu-status-inner
{
	height: 100%;
	top: 0;
	-webkit-animation: old-up .01s linear;
	animation: old-up .01s linear;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards
}

.menu .menu-items .menu-item.selected.down .menu-status .menu-status-inner
{
	height: 100%;
	-webkit-animation: new-down .01s linear;
	animation: new-down .01s linear;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards
}

.menu-item.old.down .menu-status .menu-status-inner
{
	height: 100%;
	top: 0;
	-webkit-animation: old-down .01s linear;
	animation: old-down .01s linear;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards
}

.menu-item-anim-appear
{
	-webkit-transform: scale(0);
	transform: scale(0)
}

.menu-item-anim-appear-done
{
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform .1s;
	transition: -webkit-transform .1s;
	transition: transform .1s;
	transition: transform .1s,-webkit-transform .1s
}

@-webkit-keyframes old-up
{
	0%
	{
		height: 100%
	}

	to
	{
		height: 0%
	}
}

@keyframes old-up
{
	0%
	{
		height: 100%
	}

	to
	{
		height: 0%
	}
}

@-webkit-keyframes new-up
{
	0%
	{
		height: 0%;
		top: 100%
	}

	to
	{
		height: 100%;
		top: 0
	}
}

@keyframes new-up
{
	0%
	{
		height: 0%;
		top: 100%
	}

	to
	{
		height: 100%;
		top: 0
	}
}

@-webkit-keyframes new-down
{
	0%
	{
		height: 0%
	}

	to
	{
		height: 100%
	}
}

@keyframes new-down
{
	0%
	{
		height: 0%
	}

	to
	{
		height: 100%
	}
}

@-webkit-keyframes old-down
{
	0%
	{
		height: 100%;
		top: 0
	}

	to
	{
		height: 0%;
		top: 100%
	}
}

@keyframes old-down
{
	0%
	{
		height: 100%;
		top: 0
	}

	to
	{
		height: 0%;
		top: 100%
	}
}


/*# sourceMappingURL=main.7de9eb10.chunk.css.map */